home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Camelot / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].zip / Camelot 105 (1991-02)(Swedish User Group of Amiga)(SE)(PD)[WB].adf / AmigaUUCP / uucico / includes.h < prev    next >
C/C++ Source or Header  |  1991-02-14  |  618b  |  37 lines

  1.  
  2. /*
  3.  *  INCLUDES.H
  4.  */
  5.  
  6. #define NAMESIZE 256
  7.  
  8. #ifdef NOTDEF
  9.  
  10. #include <exec/types.h>
  11. #include <fcntl.h>
  12. #include <exec/exec.h>
  13. #include <devices/serial.h>
  14. #include <devices/keymap.h>
  15. #include <devices/timer.h>
  16. #include <libraries/dos.h>
  17.  
  18. #endif
  19.  
  20. #include "protos.h"         /*  other system protos  */
  21.  
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include <ctype.h>
  26. #include <time.h>
  27. #include <signal.h>
  28. #include "config.h"         /*  lib protos and config stuff */
  29. #include "uucico_protos.h"  /*  uucico protos               */
  30.  
  31. #ifndef TRUE
  32. #define TRUE    1
  33. #endif
  34. #ifndef FALSE
  35. #define FALSE    0
  36. #endif
  37.